// TOWN SPECIAL ENCOUNTERS
//    Town 156: Dorngas

beginzonescript;

variables;

short im_hostile = 0;
short max_crime = 200;
short last_abil;
short counter = 0;
short set_ter = 0;

body;

beginstate INIT_STATE;
	last_abil = get_current_tick();

//	set_name(,);
//	add_range_to_group(,,groupn);

	set_personality_name(3120,"Wray");
	set_personality_name(3121,"Radewitz");
	set_personality_name(3122,"Angry Man");
	set_personality_name(3080,"Foxfire");

	set_boss_level(15615,1);
	set_attack_bonus(15615,50);
	set_new_abil(15615,14);
	
	set_crime_tolerance(max_crime);

	break;

beginstate EXIT_STATE;
break;

beginstate START_STATE;
	if (get_ran(1,0,100) < 10)
		give_char_text_bubble(15600,"Need a better perspective.");
	if (get_ran(1,0,100) < 10)
		give_char_text_bubble(15600,"They are terrifying.");
	if (get_ran(1,0,100) < 10)
		give_char_text_bubble(15600,"Will the walls hold?");
	if (get_ran(1,0,100) < 10)
		give_char_text_bubble(15600,"Will the Empire return?");
	if (get_ran(1,0,100) < 10)
		give_char_text_bubble(15600,"Radowitz sells the maps.");
	if (get_ran(1,0,100) < 10)
		give_char_text_bubble(15603,"I sell maps.");
	if (get_ran(1,0,100) < 10)
		give_char_text_bubble(15603,"We have free rooms.");
	if (get_ran(1,0,100) < 10)
		give_char_text_bubble(15603,"Business is terrible.");
	if (get_ran(1,0,100) < 10)
		give_char_text_bubble(15615,"Get out.");
	if (get_ran(1,0,100) < 10)
		give_char_text_bubble(15615,"Go.");
	if (get_ran(1,0,100) < 10)
		give_char_text_bubble(15626,"Strum.");
	if (get_ran(1,0,100) < 10)
		give_char_text_bubble(15626,"Strum. Strum.");
	if (get_ran(1,0,100) < 10)
		give_char_text_bubble(15626,"A fellow traveler.");
	if (get_ran(1,0,100) < 10)
		give_char_text_bubble(15626,"Sit and rest.");
	if (get_ran(1,0,100) < 10)
		give_char_text_bubble(15618,"My school is gone.");
	if (get_ran(1,0,100) < 10)
		give_char_text_bubble(15618,"The giants came.");
	if (get_ran(1,0,100) < 10)
		give_char_text_bubble(15618,"I can make elixirs.");
	if (get_ran(1,0,100) < 10)
		give_char_text_bubble(15618,"We will rebuild.");


break;

beginstate 10;
break;

beginstate 11;
break;

beginstate 12;
break;

beginstate 13;
break;

beginstate 14;
break;

//	print_str("");
//	set_terrain_string_range("",1);
//	set_terrain_string_range("The sign says - .",1);

